home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / netinet / in.h < prev    next >
C/C++ Source or Header  |  1989-02-16  |  3KB  |  133 lines

  1. /*
  2.  * Copyright (c) 1982, 1986 Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms are permitted
  6.  * provided that this notice is preserved and that due credit is given
  7.  * to the University of California at Berkeley. The name of the University
  8.  * may not be used to endorse or promote products derived from this
  9.  * software without specific prior written permission. This software
  10.  * is provided ``as is'' without express or implied warranty.
  11.  *
  12.  *    @(#)in.h    7.5 (Berkeley) 2/22/88
  13.  */
  14.  
  15. #ifndef _IN
  16. #define _IN
  17.  
  18. #ifndef _MACHPARAM
  19. #include <machparam.h>
  20. #endif
  21.  
  22. /*
  23.  * Constants and structures defined by the internet system,
  24.  * Per RFC 790, September 1981.
  25.  */
  26.  
  27. /*
  28.  * Protocols
  29.  */
  30. #define    IPPROTO_IP        0        /* dummy for IP */
  31. #define    IPPROTO_ICMP        1        /* control message protocol */
  32. #define    IPPROTO_GGP        3        /* gateway^2 (deprecated) */
  33. #define    IPPROTO_TCP        6        /* tcp */
  34. #define    IPPROTO_EGP        8        /* exterior gateway protocol */
  35. #define    IPPROTO_PUP        12        /* pup */
  36. #define    IPPROTO_UDP        17        /* user datagram protocol */
  37. #define    IPPROTO_IDP        22        /* xns idp */
  38. #define IPPROTO_SPRITE        90        /* sprite RPC protocol */
  39.  
  40. #define    IPPROTO_RAW        255        /* raw IP packet */
  41. #define    IPPROTO_MAX        256
  42.  
  43.  
  44. /*
  45.  * Ports < IPPORT_RESERVED are reserved for
  46.  * privileged processes (e.g. root).
  47.  * Ports > IPPORT_USERRESERVED are reserved
  48.  * for servers, not necessarily privileged.
  49.  */
  50. #define    IPPORT_RESERVED        1024
  51. #define    IPPORT_USERRESERVED    5000
  52.  
  53. /*
  54.  * Link numbers
  55.  */
  56. #define    IMPLINK_IP        155
  57. #define    IMPLINK_LOWEXPER    156
  58. #define    IMPLINK_HIGHEXPER    158
  59.  
  60. /*
  61.  * Internet address (a structure for historical reasons)
  62.  */
  63. struct in_addr {
  64.     u_long s_addr;
  65. };
  66.  
  67. /*
  68.  * Definitions of bits in internet address integers.
  69.  * On subnets, the decomposition of addresses to host and net parts
  70.  * is done according to subnet mask, not the masks here.
  71.  */
  72. #define    IN_CLASSA(i)        (((long)(i) & 0x80000000) == 0)
  73. #define    IN_CLASSA_NET        0xff000000
  74. #define    IN_CLASSA_NSHIFT    24
  75. #define    IN_CLASSA_HOST        0x00ffffff
  76. #define    IN_CLASSA_MAX        128
  77.  
  78. #define    IN_CLASSB(i)        (((long)(i) & 0xc0000000) == 0x80000000)
  79. #define    IN_CLASSB_NET        0xffff0000
  80. #define    IN_CLASSB_NSHIFT    16
  81. #define    IN_CLASSB_HOST        0x0000ffff
  82. #define    IN_CLASSB_MAX        65536
  83.  
  84. #define    IN_CLASSC(i)        (((long)(i) & 0xe0000000) == 0xc0000000)
  85. #define    IN_CLASSC_NET        0xffffff00
  86. #define    IN_CLASSC_NSHIFT    8
  87. #define    IN_CLASSC_HOST        0x000000ff
  88.  
  89. #define    IN_CLASSD(i)        (((long)(i) & 0xf0000000) == 0xe0000000)
  90. #define    IN_MULTICAST(i)        IN_CLASSD(i)
  91.  
  92. #define    IN_EXPERIMENTAL(i)    (((long)(i) & 0xe0000000) == 0xe0000000)
  93. #define    IN_BADCLASS(i)        (((long)(i) & 0xf0000000) == 0xf0000000)
  94.  
  95. #define    INADDR_ANY        (u_long)0x00000000
  96. #define    INADDR_BROADCAST    (u_long)0xffffffff    /* must be masked */
  97. #ifndef KERNEL
  98. #define    INADDR_NONE        0xffffffff        /* -1 return */
  99. #endif
  100.  
  101. #define    IN_LOOPBACKNET        127            /* official! */
  102.  
  103. /*
  104.  * Socket address, internet style.
  105.  */
  106. struct sockaddr_in {
  107.     short    sin_family;
  108.     u_short    sin_port;
  109.     struct    in_addr sin_addr;
  110.     char    sin_zero[8];
  111. };
  112.  
  113. /*
  114.  * Options for use with [gs]etsockopt at the IP level.
  115.  */
  116. #define    IP_OPTIONS    1        /* set/get IP per-packet options */
  117.  
  118. /*
  119.  * Macros for network/external number representation conversion.
  120.  */
  121.  
  122. #if BYTE_ORDER == BIG_ENDIAN && !defined(lint)
  123. #define ntohl(x)        (x)
  124. #define ntohs(x)        (x)
  125. #define htonl(x)        (x)
  126. #define htons(x)        (x)
  127. #else
  128. unsigned short  ntohs(), htons();
  129. unsigned long   ntohl(), htonl();
  130. #endif
  131.  
  132. #endif _IN
  133.